pen.ink=blue;

//draw board
pen.jumpto (7,1);
screen.clear;
pen.south (19);
pen.jumpto (14,1);
pen.south (19);
pen.jumpto (1,7);
pen.east (19);
pen.jumpto (1,14);
pen.east (19);

//draw o
pen.jumpto (2,2);
pen.south (3);
pen.east (3);
pen.north (3);
pen.west (3);

//draw x
pen.jumpto (9,9);
pen.southeast (3);
pen.northwest (1);
pen.west (1);
pen.southwest (1);
pen.northeast (3);

//draw o
pen.jumpto (16,2);
pen.south (3);
pen.east (3);
pen.north (3);
pen.west (3);

end script;